/* ==========================================================================
   MACHINERY & ASSETS PAGE SPECIFIC STYLES
   ========================================================================== */


/* =============================================
   1. HERO SECTION
   ============================================= */
.ma-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Assets/Machinery & Equipment/excavator.jpg') no-repeat center center / cover;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.ma-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.96) 0%,
        rgba(26, 26, 26, 0.80) 55%,
        rgba(248, 147, 32, 0.22) 100%
    );
    z-index: 1;
}

.ma-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 860px;
}

.ma-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 147, 32, 0.15);
    border: 1px solid rgba(248, 147, 32, 0.4);
    color: var(--primary-color);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.ma-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.15;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.ma-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.breadcrumbs {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumbs a:hover { color: var(--primary-color); }
.breadcrumbs i { font-size: 10px; color: var(--primary-color); }
.breadcrumbs span { color: var(--primary-color); }

.ma-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    animation: maScrollBounce 2s infinite;
}

@keyframes maScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}


/* =============================================
   2. STATS SECTION
   ============================================= */
.ma-stats-section {
    background: var(--dark-color);
    padding: 0;
    margin-top: -2px;
}

.ma-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ma-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 42px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.ma-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.ma-stat-card:hover::after { width: 100%; }
.ma-stat-card:last-child { border-right: none; }

.ma-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(248, 147, 32, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.ma-stat-card:hover .ma-stat-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.ma-stat-body { color: var(--white); }

.ma-stat-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.ma-stat-suffix {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.ma-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #b3b3b3;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* =============================================
   3. INTRO SECTION
   ============================================= */
.ma-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.ma-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* Shared typography */
.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.overview-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.65;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.overview-p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 18px;
    line-height: 1.75;
}

.ma-intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.ma-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-light);
    border-left: 3px solid var(--primary-color);
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    transition: var(--transition);
}

.ma-highlight-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.ma-highlight-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.ma-highlight-item:hover i { color: var(--white); }

/* Intro Image Stack */
.ma-intro-images { position: relative; }

.ma-img-stack {
    position: relative;
    display: flex;
    flex-direction: column;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-wrapper:hover img { transform: scale(1.05); }

.ma-img-main {
    width: 90%;
    height: 340px;
    z-index: 1;
}

.ma-img-secondary {
    width: 75%;
    height: 230px;
    align-self: flex-end;
    margin-top: -100px;
    z-index: 2;
    border: 6px solid var(--white);
}

.ma-intro-badge {
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: var(--dark-color);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border-bottom: 3px solid var(--primary-color);
}

.ma-intro-badge i {
    font-size: 28px;
    color: var(--primary-color);
}

.ma-badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 3px;
}

.ma-badge-label {
    font-size: 12px;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =============================================
   4. EQUIPMENT CATEGORY SECTIONS
   ============================================= */
.ma-category-section {
    padding: 90px 0;
}

.ma-bg-light { background: var(--gray-light); }
.ma-bg-dark  { background: var(--dark-color); }

/* Category Header */
.ma-category-header {
    text-align: center;
    margin-bottom: 55px;
}

.ma-category-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    border: 1px solid rgba(248, 147, 32, 0.25);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ma-label-dark {
    background: rgba(248, 147, 32, 0.12);
    border-color: rgba(248, 147, 32, 0.3);
}

.ma-category-desc {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* Dark section typography */
.text-white  { color: var(--white) !important; }
.text-muted  { color: #b3b3b3 !important; }

/* Equipment Grid (3 cols default) */
.ma-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ma-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ma-grid-2-col {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
}


/* ---- Equipment Card ---- */
.ma-equipment-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.ma-equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Dark variant cards */
.ma-card-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.07);
    border-top: 3px solid var(--primary-color);
}

.ma-card-dark:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(248, 147, 32, 0.3);
}

.ma-card-dark .ma-equipment-body h3 { color: var(--white); }
.ma-card-dark .ma-equipment-body p  { color: #b3b3b3; }

/* Card Image Box */
.ma-equipment-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #f0f0f0;
}

.ma-img-sm { height: 180px; }

.ma-equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.ma-equipment-card:hover .ma-equipment-img img {
    transform: scale(1.08);
}

/* Image hover overlay */
.ma-equipment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: var(--white);
    font-size: 28px;
}

.ma-equipment-card:hover .ma-equipment-overlay { opacity: 1; }

/* Card Body */
.ma-equipment-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ma-equipment-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    flex-shrink: 0;
    transition: var(--transition);
}

.ma-equipment-card:hover .ma-equipment-icon {
    background: var(--primary-color);
    color: var(--white);
}

.ma-equipment-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.ma-equipment-card:hover .ma-equipment-body h3 {
    color: var(--primary-color);
}

.ma-card-dark:hover .ma-equipment-body h3 {
    color: var(--primary-color);
}

.ma-equipment-body p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65;
    flex: 1;
    margin: 0 0 16px;
}

/* Equipment Tags */
.ma-equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.ma-equipment-tags span {
    background: var(--primary-light);
    color: var(--primary-color);
    border: 1px solid rgba(248, 147, 32, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.ma-card-dark .ma-equipment-tags span {
    background: rgba(248, 147, 32, 0.1);
    border-color: rgba(248, 147, 32, 0.2);
}

.ma-equipment-card:hover .ma-equipment-tags span {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}


/* =============================================
   5. CRANE FEATURE CARD (wide layout)
   ============================================= */
.ma-crane-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: var(--transition);
}

.ma-crane-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ma-crane-img {
    position: relative;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.ma-crane-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.ma-crane-feature-card:hover .ma-crane-img img {
    transform: scale(1.06);
}

.ma-crane-content {
    padding: 40px 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ma-crane-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.2;
}

.ma-crane-feature-card:hover .ma-crane-content h3 {
    color: var(--primary-color);
}

.ma-crane-content p {
    font-size: 15px;
    color: #b3b3b3;
    line-height: 1.7;
    margin: 0;
}

.ma-crane-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ma-crane-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: #d0d0d0;
}

.ma-crane-spec-item i {
    color: var(--primary-color);
    font-size: 15px;
    flex-shrink: 0;
}

.ma-crane-content .ma-equipment-tags span {
    background: rgba(248, 147, 32, 0.1);
    color: var(--primary-color);
    border-color: rgba(248, 147, 32, 0.2);
}

.ma-crane-feature-card:hover .ma-equipment-tags span {
    background: var(--primary-color);
    color: var(--white);
}


/* =============================================
   6. FLEET ADVANTAGE SECTION
   ============================================= */
.ma-advantage-section {
    padding: 90px 0;
    background: var(--white);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

.ma-advantage-lead {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 650px;
    margin: 15px auto 0;
    line-height: 1.7;
}

.ma-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ma-advantage-card {
    background: var(--gray-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 3px solid transparent;
    border-radius: 8px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.ma-advantage-card:hover {
    background: var(--white);
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.ma-adv-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: rgba(248, 147, 32, 0.08);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
    transition: color 0.35s ease;
    user-select: none;
}

.ma-advantage-card:hover .ma-adv-num {
    color: rgba(248, 147, 32, 0.15);
}

.ma-adv-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.ma-advantage-card:hover .ma-adv-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(5deg);
}

.ma-advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ma-advantage-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65;
    margin: 0;
}


/* =============================================
   7. COMMITMENT BANNER
   ============================================= */
.ma-commitment-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.commitment-bg-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
    z-index: 1;
}

.commitment-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.97) 0%, rgba(248, 147, 32, 0.12) 100%);
    z-index: 2;
}

.ma-commitment-wrapper {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
}

.commitment-badge-icon {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: maPulse 3s infinite;
}

.ma-commitment-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.ma-commitment-quote {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.commitment-standards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.commitment-standards span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 22px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.commitment-standards span:hover {
    background: rgba(248, 147, 32, 0.18);
    border-color: rgba(248, 147, 32, 0.35);
}

.commitment-standards i { color: var(--primary-color); }

@keyframes maPulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.06); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}


/* =============================================
   8. CTA SECTION
   ============================================= */
.ma-cta-section {
    padding: 90px 0;
    background: var(--gray-light);
}

.cta-box {
    background: var(--white);
    padding: 70px 60px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 15px;
    color: var(--gray-dark) !important;
    margin-bottom: 35px !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-cta-primary { background: var(--primary-color); color: var(--white); }
.btn-cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 147, 32, 0.35);
}

.btn-cta-outline { border: 2px solid var(--gray-dark); color: var(--gray-dark); }
.btn-cta-outline:hover {
    background: var(--gray-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


/* =============================================
   9. SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-up,
.reveal-content,
.reveal-images,
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-images {
    transform: scale(0.97);
    transition: opacity 1s ease, transform 1s ease;
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Hero staggered entrance */
.ma-hero-content .reveal-up:nth-child(1) { transition-delay: 0.1s; }
.ma-hero-content .reveal-up:nth-child(2) { transition-delay: 0.25s; }
.ma-hero-content .reveal-up:nth-child(3) { transition-delay: 0.4s; }
.ma-hero-content .reveal-up:nth-child(4) { transition-delay: 0.55s; }


/* =============================================
   10. RESPONSIVE MEDIA QUERIES
   ============================================= */

/* Large Desktop */
@media (max-width: 1200px) {
    .ma-equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .ma-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .ma-advantage-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 992px) {
    .ma-stats-grid { grid-template-columns: repeat(2, 1fr); }

    .ma-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ma-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ma-img-main {
        width: 100%;
        height: 360px;
    }

    .ma-img-secondary { display: none; }

    .ma-intro-badge {
        left: 20px;
        bottom: 20px;
    }

    .ma-equipment-grid { grid-template-columns: repeat(2, 1fr); }

    .ma-grid-4 { grid-template-columns: repeat(2, 1fr); }

    .ma-advantage-grid { grid-template-columns: repeat(2, 1fr); }

    .ma-crane-feature-card { grid-template-columns: 1fr; }

    .ma-crane-img { min-height: 260px; height: 260px; }
}

/* Small Tablets */
@media (max-width: 768px) {
    .ma-hero { height: 320px; }
    .ma-hero-title { font-size: 36px; }
    .section-title { font-size: 30px; }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 { font-size: 28px; }

    .ma-intro-highlights { grid-template-columns: 1fr; }

    .ma-equipment-grid { grid-template-columns: 1fr; }

    .ma-grid-4 { grid-template-columns: repeat(2, 1fr); }

    .ma-advantage-grid { grid-template-columns: repeat(2, 1fr); }

    .ma-commitment-wrapper h2 { font-size: 28px; }

    .ma-crane-specs { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 576px) {
    .ma-hero-title { font-size: 28px; }
    .ma-hero-badge { font-size: 11px; padding: 7px 16px; }

    .ma-stats-grid { grid-template-columns: 1fr; }

    .ma-intro-section,
    .ma-category-section,
    .ma-advantage-section,
    .ma-cta-section { padding: 60px 0; }

    .ma-grid-4 { grid-template-columns: 1fr; }

    .ma-advantage-grid { grid-template-columns: 1fr; }

    .cta-buttons { flex-direction: column; gap: 15px; }

    .btn-cta { width: 100%; justify-content: center; }

    .commitment-standards span {
        width: 100%;
        justify-content: center;
    }
}
